c672c7522f887d4d53b16f094b2fd337bff07ffb,providers/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/SectionRoleResolver.java,SectionRoleResolver,getGroupRoles,#CourseManagementService#String#,120
Before Change
if ((officialInstructorRole != null) && (officialInstructorRole.length() > 0)) {
Set<Section> instructingSections = cmService.findInstructingSections(userEid);
for(Section instructingSection : instructingSections) {
groupRoleMap.put(instructingSection.getEid(), officialInstructorRole);
}
}
After Change
if ((officialInstructorRole != null) && (officialInstructorRole.length() > 0)) {
Set<Section> instructingSections = cmService.findInstructingSections(userEid);
for(Section instructingSection : instructingSections) {
groupRoleMap.put(instructingSection.getEid().toUpperCase(), officialInstructorRole);
}
}